home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if "%1"=="a" goto install
- if "%1"=="A" goto install
- if "%1"=="b" goto install
- if "%1"=="B" goto install
- if "%1"=="c" goto install
- if "%1"=="C" goto install
- if "%1"=="d" goto install
- if "%1"=="D" goto install
- if "%1"=="e" goto install
- if "%1"=="E" goto install
- if "%1"=="f" goto install
- if "%1"=="F" goto install
- if "%1"=="g" goto install
- if "%1"=="G" goto install
- if "%1"=="h" goto install
- if "%1"=="H" goto install
- echo ---
- echo [SETUP.BAT vom 01.10.1993]
- echo:
- echo Bitte geben Sie als ersten Parameter den Kennbuchstaben des Ziellaufwerkes
- echo ohne nachfolgenden Doppelpunkt an. Dieses SETUP arbeitet ausschließlich mit
- echo den Ziellaufwerken A bis H.
- echo:
- echo Beispiel: SETUP D erzeugt auf Laufwerk D: einen Ordner namens TSCADRAW
- echo und kopiert in diesen TommySoftware CAD/DRAW.
- echo ---
- goto end
- :install
- type setup.txt
- pause
- echo ---
- echo [SETUP.BAT vom 01.10.1993]
- echo:
- echo Entpacken der TommySoftware CAD/DRAW Diskette und kopieren nach %1:\tscadraw
- echo ---
- md %1:\tscadraw
- :wait1
- if exist tscd_b.exe goto copy1
- echo Bitte legen Sie die Diskette ein, die TSCD_B.EXE enthält!!!
- pause
- goto wait1
- :copy1
- tscd_b.exe %1:\
- :wait2
- if exist tscd_c.exe goto copy2
- echo Bitte legen Sie die Diskette ein, die TSCD_C.EXE enthält!!!
- pause
- goto wait2
- :copy2
- tscd_c.exe %1:\
- :wait3
- if exist tscd_d.exe goto copy3
- echo Bitte legen Sie die Diskette ein, die TSCD_D.EXE enthält!!!
- pause
- goto wait3
- :copy3
- tscd_d.exe %1:\
- echo ---
- copy %1:\tscadraw\system\laufw_%1.mpi %1:\tscadraw\tscadraw.mpi >NUL
- del %1:\tscadraw\file_id.diz >NUL
- del %1:\tscadraw\infos\file_id.diz >NUL
- del %1:\tscadraw\system\file_id.diz >NUL
- :end
-